home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d26 / pclearn5.arc / INSTALL.BAT < prev    next >
DOS Batch File  |  1991-02-12  |  3KB  |  75 lines

  1. ECHO OFF
  2. CLS
  3. ECHO      Hard drive installation program for PC-LEARN
  4. ECHO   --------------------------------------------------------
  5. ECHO Author can provide floppy version of PC-LEARN.
  6. ECHO Contact PO Box 1506, Mercer Island, WA 98040
  7. ECHO Press  C  to continue installing PC-LEARN to a hard drive.
  8. ECHO Press  Q  to quit or abort process
  9. ECHO   --------------------------------------------------------
  10. ask  Press a key for selection:
  11. IF ERRORLEVEL 81 GOTO abort
  12. IF ERRORLEVEL 67 GOTO LABELC
  13. :LABELC
  14. CLS
  15. ECHO ---------    Hard Drive C: install -----------------------------
  16. ECHO This hard drive installation program will prepare a subdirectory
  17. ECHO named C:\PCL on your hard drive then install all files to that 
  18. ECHO area. Installation program assumes drive A: contains files to
  19. ECHO be unpacked and is the SOURCE DRIVE. Hard drive C: will be the
  20. ECHO TARGET drive to which files will be unpacked. 
  21. echo ---------------------------------------------------------------
  22. echo If you DO NOT wish to install to C: but prefer another 
  23. echo hard drive letter, select quit option and then refer to 
  24. echo LHARC help screen for alternate unpacking command structure. 
  25. echo After quitting, type    LHARC   at DOS prompt for LHARC help. 
  26. echo ----------------------------------------------------------------
  27. echo If you have an old copy of PC-LEARN data on your hard drive
  28. echo which is important to you, you may wish to quit/abort
  29. echo and backup that old copy for archival purposes. Otherwise,
  30. echo please continue . . .
  31. echo ----------------------------------------------------------------
  32. echo press  C  to continue
  33. echo press  Q  to quit
  34. ask  Press a key for selection: 
  35. cls
  36. IF ERRORLEVEL 81 GOTO ABORT
  37. C:
  38. CD\
  39. MD PCL
  40. ECHO If a previous older version of the PC-LEARN package is already
  41. ECHO installed, answer yes to all prompts to overwrite old files 
  42. ECHO with the newer PC-LEARN data files.
  43. A:
  44. lharc x a:PCL.lzh c:\pcl\
  45. CLS
  46. echo ------------------------------------------------------------
  47. ECHO            Installation is now complete
  48. echo You might want to write the following for future reference:
  49. echo To start PC-LEARN at a future time, you need to first
  50. echo change into the PC-LEARN subdirectory  CD\PCL (then hit enter)
  51. echo then issue the startup command         PCL    (then hit enter)
  52. echo ------------------------------------------------------------
  53. echo Press  C  to continue and run the PC-LEARN program.
  54. echo Press  Q  to quit and run later.  
  55. echo ------------------------------------------------------------
  56. ask  Press a key for selection
  57. if errorlevel 81 goto quit
  58. if errorlevel 67 goto run
  59. :run
  60. c:
  61. cd\
  62. cd PCL
  63. PCL
  64. GOTO QUIT
  65. :QUIT
  66. CLS
  67. ECHO            Installation of PC-LEARN program now complete.
  68. ECHO   Be sure to register or subscribe - support the shareware concept!
  69. ECHO   See the file REGISTER.TXT within the main program for details . . .
  70. GOTO END
  71. :ABORT
  72. cls
  73. ECHO   Installation process aborted
  74. :END
  75.